home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Javelin Pop-up Menu Configuration
- ;
- Comment ("Configured for Javelin 1.0")
-
- ;
- ; Parameters
- ;
- Sensitivity (13, 13) ; (Xinc, Yinc)
- Hysteresis (1, 1) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (Yes) ; Menu is in a fixed position
- MenuCenter (0, 3) ; (Col, Row) of menu center
- EnableBeep (Yes) ; Beeps if wrong button pressed with menu up
- NoviceMode (Yes) ; Does not generate "Exit Pop-up" menu item
- ExpertMode (No) ; " " " " " " "
-
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LB: Button (Menu(Main)) ; Left button
- MB: Button (Keys([Enter])) ; Middle button
- RB: Button (Keys([Esc])) ; Right button
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main Menu")
- Item ("Javelin Menu", Keys("/"))
- Item ("Spell Key", Keys([Tab]))
- Item ("Home", Keys([Home]))
- Item ("End", Keys([End]))
- Item ("Function Keys", Menu(Function))
- )
- ;
- ;
- ;
- ;
- Function: Menu
- (
- Title ("Function Key Menu")
- Item ("Javelin Menu", Keys("/"))
- Item ("Help", Keys([F1]))
- Item ("Edit", Keys([F2]))
- Item ("Sync", Keys([F3]))
- Item ("Point", Keys([F4]))
- Item ("Go To", Keys([F5]))
- Item ("Window", Keys([F6]))
- Item ("Run Macro", Keys([F7]))
- Item ("Quick Graph", Keys([F8]))
- Item ("Calc", Keys([F9]))
- Item ("Graph", Keys([F10]))
- Item ("Spell Key", Keys([TAB]))
- Item ("Home", Keys([Home]))
- Item ("End", Keys([End]))
- )
-
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LB)
- Middle (MB)
- Right (RB)
- Cursor (ArrowKeys)
- )